-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
included shortcut for Info Panel (issue 2533) #2621
Conversation
Thank you, I'll review this this week 👍 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please fix your code 👍
: e.ctrlKey | ||
if (isSuper && !e.shiftKey && !e.altKey) { | ||
e.preventDefault() | ||
this.addSnippet() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What's this addSnippet
function 😄
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok.
My bad
I thought, since I was at it, I might as well add the shortcuts already implemented for the SnippetNode.
I'll push again with only ctrl+i and ctrl+t
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
i mean ctrl+i and ctrl+tab
: e.ctrlKey | ||
if (isSuper) { | ||
e.preventDefault() | ||
this.focus() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The ctrl + l
shortcut focuses the search bar, is that the correct behavior?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ctr+ i
Requested changes done. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
I think now it will finally be merged